home *** CD-ROM | disk | FTP | other *** search
/ Enter 2006 September / Enter 09 2006.iso / Internet / SpamExperts Home 1.1 / SpamExperts Home.exe / lib / spamexperts.modules / Crypto / Cipher / __init__.pyc (.txt) next >
Encoding:
Python Compiled Bytecode  |  2006-07-14  |  1.3 KB  |  40 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Secret-key encryption algorithms.
  5.  
  6. Secret-key encryption algorithms transform plaintext in some way that
  7. is dependent on a key, producing ciphertext. This transformation can
  8. easily be reversed, if (and, hopefully, only if) one knows the key.
  9.  
  10. The encryption modules here all support the interface described in PEP
  11. 272, "API for Block Encryption Algorithms".
  12.  
  13. If you don\'t know which algorithm to choose, use AES because it\'s
  14. standard and has undergone a fair bit of examination.
  15.  
  16. Crypto.Cipher.AES         Advanced Encryption Standard
  17. Crypto.Cipher.ARC2        Alleged RC2
  18. Crypto.Cipher.ARC4        Alleged RC4
  19. Crypto.Cipher.Blowfish
  20. Crypto.Cipher.CAST
  21. Crypto.Cipher.DES         The Data Encryption Standard.  Very commonly used
  22.                           in the past, but today its 56-bit keys are too small.
  23. Crypto.Cipher.DES3        Triple DES.
  24. Crypto.Cipher.IDEA
  25. Crypto.Cipher.RC5
  26. Crypto.Cipher.XOR         The simple XOR cipher.
  27. '''
  28. __all__ = [
  29.     'AES',
  30.     'ARC2',
  31.     'ARC4',
  32.     'Blowfish',
  33.     'CAST',
  34.     'DES',
  35.     'DES3',
  36.     'IDEA',
  37.     'RC5',
  38.     'XOR']
  39. __revision__ = '$Id: __init__.py,v 1.7 2003/02/28 15:28:35 akuchling Exp $'
  40.